Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
The is-extglob npm package is used to check if a string has an extglob pattern. Extglob patterns are extensions to the basic glob patterns, allowing for more expressive matches. This package is particularly useful in applications that need to parse, interpret, or validate file paths and patterns for more complex matching criteria than simple wildcard matches.
Check if a string is an extglob pattern
This feature allows you to check if a given string is an extglob pattern. The function returns true if the string is an extglob pattern, otherwise false. This is useful for validating or parsing strings that are expected to be in extglob format.
"const isExtglob = require('is-extglob');\nconsole.log(isExtglob('!(pattern)')); // true\nconsole.log(isExtglob('pattern')); // false"
Micromatch is a more comprehensive glob matching library that supports extglobs, braces, and other complex patterns. It is similar to is-extglob in that it can recognize extglob patterns, but it also provides a wide range of additional features for matching, filtering, and working with glob patterns. Compared to is-extglob, micromatch offers a broader set of functionalities for dealing with glob patterns.
Extglob is closely related to is-extglob, as it not only allows checking for extglob patterns but also provides functions to convert extglob strings into regex patterns. This package is more about utilizing extglob patterns rather than just identifying them. It complements is-extglob by offering a way to work with the patterns identified by is-extglob.
Returns true if a string has an extglob.
npm i is-extglob --save
var isExtglob = require('is-extglob');
True
isExtglob('?(abc)');
isExtglob('@(abc)');
isExtglob('!(abc)');
isExtglob('*(abc)');
isExtglob('+(abc)');
False
Everything else...
isExtglob('foo.js');
isExtglob('!foo.js');
isExtglob('*.js');
isExtglob('**/abc.js');
isExtglob('abc/*.js');
isExtglob('abc/(aaa|bbb).js');
isExtglob('abc/[a-z].js');
isExtglob('abc/{a,b}.js');
isExtglob('abc/?.js');
isExtglob('abc.js');
isExtglob('abc/def/ghi.js');
Install dev dependencies.
npm i -d && npm test
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Jon Schlinkert
Copyright (c) 2015 Jon Schlinkert
Released under the MIT license
This file was generated by verb-cli on March 06, 2015.
FAQs
Returns true if a string has an extglob.
The npm package is-extglob receives a total of 38,769,159 weekly downloads. As such, is-extglob popularity was classified as popular.
We found that is-extglob demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.